home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / MW MPW Binaries 1.1.1a2 / mwcPPC / MWCIncludes / stdarg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-18  |  523 b   |  30 lines  |  [TEXT/MMCC]

  1. /* stdarg.h standard header */
  2. #ifndef _STDARG
  3. #define _STDARG
  4. #ifndef _YVALS
  5. #include <yvals.h>
  6. #endif
  7.  
  8. #if __MWERKS__
  9. #pragma options align=mac68k
  10. #endif
  11.  
  12.         /* type definitions */
  13. typedef _Va_list va_list;
  14.         /* macros */
  15. #define va_start(ap, A) _Va_start(ap, A)
  16. #define va_arg(ap, T) _Va_arg(ap, T)
  17. #define va_end(ap)        (void)0
  18.  
  19. #if __MWERKS__
  20. #pragma options align=reset
  21. #endif
  22.  
  23. #endif
  24.  
  25. /*
  26.  * Copyright (c) 1994 by P.J. Plauger.  ALL RIGHTS RESERVED. 
  27.  * Consult your license regarding permissions and restrictions.
  28.  */
  29.  
  30.